/* ProjectPg Styles */

/* Master Styles */
body{
    margin: 0;
    padding: 0;
    font-family: "avenir", monospace, Helvetica, Arial, sans-serif;
    color : rgb(6, 8, 122);
    font-size: 15px;
}
header{
    margin: 0px;
    padding: 0px;
}

/* Nav Styles */
.navbarMain{
    display: flex;
    justify-content: space-between;
    margin: 0 10px;
    padding: 0 10px;
    align-items: center;
    max-height: 102px;
}
.imageLeft img{
    width: 102px;
    height: 102px;
    float: left;
    padding-left: 15px;
    margin-left: 15px;
}
.navbarMain > ul.mainNavRight{
    padding-right: 20px;
    margin: 20px;
}
.navbarMain > ul.mainNavRight > li{
    /* try using flex */
    float: left;
    position: relative;
    text-decoration: none;
    justify-content: space-evenly;
    border-bottom: 1px solid rgb(55, 6, 78) transparent;
    list-style-type: none;
    transition: border-bottom 0.5s;
    margin: 1px;
    padding: 1px 5px;
}
.navbarMain ul.mainNavRight li a{
    text-decoration: none;
    text-align: right;
    font-family: "Roboto", sans-serif;
    padding: 0 2px 2px 2px;
    border: 5px 5px 10px 5px;
    margin: 5px 5px 10px 5px;
    position: relative;
}
.mainNavRight li.active a { 
    border-bottom: 1px solid rgb(55, 6, 78);
    color: rgb(55, 6, 78);
}
.mainNavRight li.inactive a { 
    color: rgb(105, 97, 90);
}
.mainNavRight a:hover{
    border-bottom: 1px solid;
}

/* Body Styles */
.bodyContent{
    /*padding: 0px 10px 10px 30px;
    margin: 0px 10px 10px 30px;*/
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    align-content: center;
    position: relative;
    margin: 0;
    padding: 10px;
    background: rgba(196, 176, 141, 0.863);
} 
.caption{
    font-family: 'Courier New', Courier, monospace ;
    padding: 0 20px;
    margin: 0px 20px;
}
.myName{
    font-family: monospace;
    color : rgb(6, 8, 122);
    padding-bottom: 2px;
    margin-bottom: 1px;
}
#myRole{
    color : rgb(6, 8, 122);
    padding-top: 2px;
    margin-top: 1px;
    font-weight: 200;
    border-bottom: solid grey 0.5px;
    padding-bottom: 30px;
}
.bodyContent h2{
    text-align: center;
}
.bodyContent > p{
    text-align: center;
    padding: 0 20px;
    margin: 0px 100px;
    letter-spacing: 0.06rem;
}
.conMidSectionItem{
    display: flex;
    margin: 40px 120px;
    align-items: center;
    /*justify-content: center;*/
    background: linear-gradient(90deg, rgba(245, 244, 240) 70%, white 70%);
    box-shadow: 4px 4px 7px 2px rgba(0,0,0,0.20);
}
.cmSecLeft{
    padding: 10px 30px 10px 20px;
    align-self: flex-start;
    width: 65%;
    height: 180px;
    letter-spacing: 0.03rem;
}
.contentLefttHead{
    font-weight: 500;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: -15px; 
}
.contentLeftSubhead{
    font-weight: 300;
    margin-bottom: 15px;
}
.conMidSectionItem p{
    text-align: left;
    margin-left: 0px;
    padding-left: 0px;
}
.cmSecLine{
    display: none;
    height: 70px;
    border-right: solid grey 2px;
}
.cmSecRight{
    padding: 10px;
    height: 180px;
    letter-spacing: 0.06rem;
}
.cmSecRight h4{
    margin-top: 2px;
    margin-bottom: 0;
    padding-left: 50px;
}
.listItemInterests{
    margin-top: 10px;
    padding-left: 50px;
}

/* Footer Styles */
footer{
    clear: both;
    border: 0px;
    padding: 10px 20px;
    position: relative;
    text-align: center;
    font-weight: 200;
}


/* Mobile Screen */
@media only screen and (max-width: 767px){
    body{
        font-size: 12px;
        width: fit-content;
    }
    .bodyContent{
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: stretch;
        align-content: center;
        position: relative;
        margin: 0;
        padding: 10px;
        background: rgba(196, 176, 141, 0.863);
    }
    .caption{
        text-align: center;
    }
    .bodyContent > p{
        text-align: center;
        padding: 0 10px 30px;
        margin: 0px 40px;
        letter-spacing: 0.06rem;
    }
    .conMidSection{
        display: flex;
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
    }
    .conMidSectionItem{
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        background: linear-gradient(0deg, rgba(245, 244, 240) 40%, white 40%);
        margin: 20px 46px;
        height: 750px;
    }
    .cmSecLeft{
        height: 60%;
        padding: 25px;
        align-self: flex-start;
        letter-spacing: 0.03rem;
        width: revert;
    }
    .contentLeftSubhead{
        margin-bottom: 30px;
    }
    .cmSecLine{
        display: none;
        visibility: hidden;
        height: revert;
    }
    .cmSecRight{
        padding: 25px;
        align-self: flex-start;
        letter-spacing: 0.03rem;
        width: revert;
    }
    .cmSecRight h4{
        padding-left: 2px;
        margin-top: 0px;
        padding-bottom: 5px;
    }
    .listItemInterests{
        padding-left: 20px;
    }
}


/* Tablet Screen */
@media only screen and (min-width: 768px) and (max-width: 1024px){
    body{
        font-size: 12px;
        width: fit-content;
    }
    .bodyContent p{
        margin: 0px 26px;
    }
    .conMidSectionItem{
        display: flex;
        justify-content: space-evenly;
        flex-direction: row;
        background: linear-gradient(90deg, rgba(245, 244, 240) 65%, white 65%);
        margin: 30px 50px;
        padding-top: 15px;
        align-items: center;
    }
    .cmSecLeft{
        height: 270px;
        padding: 25px;
        align-self: flex-start;
        letter-spacing: 0.03rem;
        width: 430px;
    }
    #cmSecLeft1{
        margin-left: -10px;
    }
    #cmSecLeft2{
        margin-left: 40px;
    }
    #cmSecLeft3{
        margin-left: 54px;
    }
    #cmSecLeft4{
        margin-left: -6px;
    }
    .contentLefttHead{
        padding-left: 25px;
    }
    .contentLeftSubhead{
        padding-left: 25px;
    }
    .cmSecLine{
        display: none;
        visibility: hidden;
    }
    .cmSecRight{
        padding: 10px;
        height: 270px;
        letter-spacing: 0.06rem;
    }
    #cmSecRight1{
        margin-left: 36px;
    }
    #cmSecRight2{
        margin-left: 40px;
    }
    #cmSecRight3{
        margin-left: 36px;
    }
    #cmSecRight4{
        margin-left: -8px;
    }
}

